Move documentation to online comments: GtkCellRendererSpin
authorJavier Jardón <jjardon@gnome.org>
Mon, 11 Apr 2011 21:14:35 +0000 (22:14 +0100)
committerJavier Jardón <jjardon@gnome.org>
Mon, 11 Apr 2011 21:14:35 +0000 (22:14 +0100)
docs/reference/gtk/tmpl/.gitignore
docs/reference/gtk/tmpl/gtkcellrendererspin.sgml [deleted file]
gtk/gtkcellrendererspin.c

index 91c807ffa629fa1dc99f1f22b5265dd631150e98..87a6836029f85e3f88b3b07b494d1f937b733bc8 100644 (file)
@@ -13,6 +13,7 @@ gtkcelllayout.sgml
 gtkcellrenderer.sgml
 gtkcellrendereraccel.sgml
 gtkcellrendererprogress.sgml
+gtkcellrendererspin.sgml
 gtkcellrenderertext.sgml
 gtkcellrenderertoggle.sgml
 gtkcellview.sgml
diff --git a/docs/reference/gtk/tmpl/gtkcellrendererspin.sgml b/docs/reference/gtk/tmpl/gtkcellrendererspin.sgml
deleted file mode 100644 (file)
index cd98ee7..0000000
+++ /dev/null
@@ -1,68 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-GtkCellRendererSpin
-
-<!-- ##### SECTION Short_Description ##### -->
-Renders a spin button in a cell
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
-#GtkCellRendererSpin renders text in a cell like #GtkCellRendererText from 
-which it is derived. But while #GtkCellRendererText offers a simple entry to 
-edit the text, #GtkCellRendererSpin offers a #GtkSpinButton widget. Of course,
-that means that the text has to be parseable as a floating point number.
-</para>
-
-<para>
-The range of the spinbutton is taken from the adjustment property of the
-cell renderer, which can be set explicitly or mapped to a column in the 
-tree model, like all properties of cell renders. #GtkCellRendererSpin
-also has properties for the climb rate and the number of digits to
-display. Other #GtkSpinButton properties can be set in a handler for the
-start-editing signal.
-</para>
-
-<para>
-The #GtkCellRendererSpin cell renderer was added in GTK+ 2.10.
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-#GtkCellRendererText, #GtkSpinButton
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### SECTION Image ##### -->
-
-
-<!-- ##### STRUCT GtkCellRendererSpin ##### -->
-<para>
-
-</para>
-
-
-<!-- ##### ARG GtkCellRendererSpin:adjustment ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG GtkCellRendererSpin:climb-rate ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG GtkCellRendererSpin:digits ##### -->
-<para>
-
-</para>
-
-<!-- ##### FUNCTION gtk_cell_renderer_spin_new ##### -->
-<para>
-
-</para>
-
-@void: 
-@Returns: 
-
-
index bd620b4c5511658caab4a439acda5b9e56ae5aac..0243f47014e48a95b56fdc43afc4f1f783b12517 100644 (file)
 #include "gtkcellrendererspin.h"
 
 
+/**
+ * SECTION:gtkcellrendererspin
+ * @Short_description: Renders a spin button in a cell
+ * @Title: GtkCellRendererSpin
+ * @See_also: #GtkCellRendererText, #GtkSpinButton
+ *
+ * #GtkCellRendererSpin renders text in a cell like #GtkCellRendererText from
+ * which it is derived. But while #GtkCellRendererText offers a simple entry to
+ * edit the text, #GtkCellRendererSpin offers a #GtkSpinButton widget. Of course,
+ * that means that the text has to be parseable as a floating point number.
+ *
+ * The range of the spinbutton is taken from the adjustment property of the
+ * cell renderer, which can be set explicitly or mapped to a column in the
+ * tree model, like all properties of cell renders. #GtkCellRendererSpin
+ * also has properties for the #GtkCellRendererSpin:climb-rate and the number
+ * of #GtkCellRendererSpin:digits to display. Other #GtkSpinButton properties
+ * can be set in a handler for the #GtkCellRenderer::editing-started signal.
+ *
+ * The #GtkCellRendererSpin cell renderer was added in GTK+ 2.10.
+ */
+
+
 struct _GtkCellRendererSpinPrivate
 {
   GtkAdjustment *adjustment;